-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create-vueの更新反映(vitestの設定ファイル追加、VueDevTool案内) (#1090)
* dresscaについて対応 * AzureADB2Cについて対応 * ドキュメントを更新 * ブランクプロジェクトの作成コマンドを最新化
- Loading branch information
1 parent
6cf953c
commit 09bf136
Showing
6 changed files
with
38 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { fileURLToPath } from 'node:url'; | ||
import { mergeConfig, defineConfig, configDefaults } from 'vitest/config'; | ||
import viteConfig from './vite.config'; | ||
|
||
export default defineConfig((configEnv) => | ||
mergeConfig( | ||
viteConfig(configEnv), | ||
defineConfig({ | ||
test: { | ||
environment: 'jsdom', | ||
exclude: [...configDefaults.exclude, 'e2e/*'], | ||
root: fileURLToPath(new URL('./', import.meta.url)), | ||
}, | ||
}), | ||
), | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { fileURLToPath } from 'node:url'; | ||
import { mergeConfig, defineConfig, configDefaults } from 'vitest/config'; | ||
import viteConfig from './vite.config'; | ||
|
||
export default defineConfig((configEnv) => | ||
mergeConfig( | ||
viteConfig(configEnv), | ||
defineConfig({ | ||
test: { | ||
environment: 'jsdom', | ||
exclude: [...configDefaults.exclude, 'e2e/*'], | ||
root: fileURLToPath(new URL('./', import.meta.url)), | ||
}, | ||
}), | ||
), | ||
); |