Skip to content

Commit

Permalink
Fix double quote & saving mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
fdodino committed Nov 15, 2023
1 parent eef72c5 commit 3709230
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"editor.codeActionsOnSave": { "source.fixAll.eslint": true },
"editor.formatOnSave": true,
"files.autoSave": "onFocusChange"
}
6 changes: 3 additions & 3 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ export default defineConfig({
plugins: [react()],
resolve: {
alias: {
src: "/src",
components: "/src/components",
src: '/src',
components: '/src/components',
},
},
test: {
globals: true,
setupFiles: ["./setupTests.js"],
setupFiles: ['./setupTests.js'],
environment: 'jsdom',
coverage: {
reporter: ['text', 'json', 'html', 'json-summary'],
Expand Down

0 comments on commit 3709230

Please sign in to comment.