Small changes in CI script and vite config

This commit is contained in:
James Cole 2024-04-14 08:51:59 +02:00
parent c54f84dc8e
commit e5f5aa628e
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80
2 changed files with 5 additions and 29 deletions

View File

@ -20,23 +20,6 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
# Install composer packages
#composer install --no-scripts --no-ansi
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
# enable test .env file.
# cp .ci/.env.ci .env
OUTPUT_FORMAT=txt
EXTRA_PARAMS=""
if [[ $GITHUB_ACTIONS = "true" ]]
then
OUTPUT_FORMAT=txt
EXTRA_PARAMS=""
fi
# clean up php code
cd $SCRIPT_DIR/php-cs-fixer
composer update --quiet
@ -44,8 +27,8 @@ rm -f .php-cs-fixer.cache
PHP_CS_FIXER_IGNORE_ENV=true
./vendor/bin/php-cs-fixer fix \
--config $SCRIPT_DIR/php-cs-fixer/.php-cs-fixer.php \
--format=$OUTPUT_FORMAT \
--allow-risky=yes $EXTRA_PARAMS
--format=txt \
--allow-risky=yes
EXIT_CODE=$?

View File

@ -20,7 +20,7 @@
import {defineConfig} from 'vite';
import laravel from 'laravel-vite-plugin';
// import manifestSRI from 'vite-plugin-manifest-sri';
import manifestSRI from 'vite-plugin-manifest-sri';
const host = '127.0.0.1';
@ -65,20 +65,13 @@ export default defineConfig({
publicDirectory: '../../../public',
refresh: true,
}),
//manifestSRI(),
manifestSRI(),
],
server: {
usePolling: true,
allowedHosts: '*.sd.internal',
host: '0.0.0.0',
hmr: {host},
cors: true
// https: {
// key: fs.readFileSync(`/Users/sander/Sites/vm/tls-certificates/wildcard.sd.local.key`),
// cert: fs.readFileSync(`/Users/sander/Sites/vm/tls-certificates/wildcard.sd.local.crt`),
// },
host: '10.0.0.15',
},
});