Skip to content

Commit

Permalink
chore(module): clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
ThornWalli committed Nov 12, 2023
1 parent b94600d commit 44610f1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# BUILDER= # webpack | vite
# BASE_URL=
# HOST=
# PORT=
16 changes: 10 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"version": "0.2.0",
"configurations": [
{
"envFile": "${workspaceFolder}/.env",
"presentation": {
"group": "nuxt"
},
Expand All @@ -11,6 +12,7 @@
"type": "node-terminal"
},
{
"envFile": "${workspaceFolder}/.env",
"presentation": {
"group": "nuxt"
},
Expand All @@ -20,6 +22,7 @@
"type": "node-terminal"
},
{
"envFile": "${workspaceFolder}/.env",
"presentation": {
"group": "nuxt"
},
Expand All @@ -29,20 +32,21 @@
"type": "node-terminal"
},
{
"envFile": "${workspaceFolder}/.env",
"presentation": {
"group": "tests"
"group": "others"
},
"command": "npm run vitest:dev",
"name": "Debug: vitest:dev",
"command": "npm run start",
"name": "Serve (dist)",
"request": "launch",
"type": "node-terminal"
},
{
"presentation": {
"group": "others"
"group": "tests"
},
"command": "npm run start",
"name": "Serve (dist)",
"command": "npm run vitest:dev",
"name": "Debug: vitest:dev",
"request": "launch",
"type": "node-terminal"
}
Expand Down
4 changes: 3 additions & 1 deletion src/utils/options.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ export function getDefaultOptions() {
return {
debug: false,

crossorigin: undefined,

disableNuxtCritters: true, // If set, `@nuxtjs/critters` will not be integrated.
disableNuxtFontaine: false, // If set, `@nuxtjs/fontaine` will not be integrated.
disableNuxtImage: false, // If set, `@nuxt/image` will not be integrated.
Expand All @@ -24,7 +26,7 @@ export function getDefaultOptions() {

fonts: [],

targetFormats: null,
targetFormats: undefined,

/**
* IntersectionObserver rootMargin for Compoennts and Assets
Expand Down

0 comments on commit 44610f1

Please sign in to comment.