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
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/>. # 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 # clean up php code
cd $SCRIPT_DIR/php-cs-fixer cd $SCRIPT_DIR/php-cs-fixer
composer update --quiet composer update --quiet
@@ -44,8 +27,8 @@ rm -f .php-cs-fixer.cache
PHP_CS_FIXER_IGNORE_ENV=true PHP_CS_FIXER_IGNORE_ENV=true
./vendor/bin/php-cs-fixer fix \ ./vendor/bin/php-cs-fixer fix \
--config $SCRIPT_DIR/php-cs-fixer/.php-cs-fixer.php \ --config $SCRIPT_DIR/php-cs-fixer/.php-cs-fixer.php \
--format=$OUTPUT_FORMAT \ --format=txt \
--allow-risky=yes $EXTRA_PARAMS --allow-risky=yes
EXIT_CODE=$? EXIT_CODE=$?

View File

@@ -20,7 +20,7 @@
import {defineConfig} from 'vite'; import {defineConfig} from 'vite';
import laravel from 'laravel-vite-plugin'; 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'; const host = '127.0.0.1';
@@ -65,20 +65,13 @@ export default defineConfig({
publicDirectory: '../../../public', publicDirectory: '../../../public',
refresh: true, refresh: true,
}), }),
//manifestSRI(), manifestSRI(),
], ],
server: { server: {
usePolling: true, usePolling: true,
allowedHosts: '*.sd.internal', host: '10.0.0.15',
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`),
// },
}, },
}); });