Skip to content

Commit

Permalink
[chore] use consistent Vite options in test projects (#5538)
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann authored Jul 14, 2022
1 parent a7d2891 commit 5eb7652
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/kit/test/apps/amp/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ import { plugin } from '../../utils.js';

/** @type {import('vite').UserConfig} */
const config = {
build: {
minify: false
},
clearScreen: false,
plugins: [plugin()],
server: {
fs: {
Expand Down
4 changes: 4 additions & 0 deletions packages/kit/test/apps/options-2/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ import { plugin } from '../../utils.js';

/** @type {import('vite').UserConfig} */
const config = {
build: {
minify: false
},
clearScreen: false,
plugins: [plugin()],
server: {
fs: {
Expand Down

0 comments on commit 5eb7652

Please sign in to comment.