diff --git a/.ci/phpcs.sh b/.ci/phpcs.sh index 29b38f892e..3cadcaeddd 100755 --- a/.ci/phpcs.sh +++ b/.ci/phpcs.sh @@ -20,23 +20,6 @@ # along with this program. If not, see . # -# 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=$? diff --git a/resources/assets/v2/vite.config.js b/resources/assets/v2/vite.config.js index 3556b08409..f2a70b6799 100644 --- a/resources/assets/v2/vite.config.js +++ b/resources/assets/v2/vite.config.js @@ -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', }, });