-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Nuxt core layer, initial commit
- Loading branch information
Showing
36 changed files
with
13,614 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"parser": "vue-eslint-parser", | ||
"parserOptions": { | ||
"parser": "@typescript-eslint/parser" | ||
}, | ||
"extends": [ | ||
"@nuxtjs/eslint-config-typescript", | ||
"plugin:tailwindcss/recommended" | ||
], | ||
"rules": { | ||
"no-console": "off", | ||
"allow-parens": "off", | ||
"vue/multi-word-component-names": "off", | ||
"vue/use-v-on-exact": "off", | ||
"tailwindcss/no-custom-classname": ["warn", { | ||
"whitelist": [ | ||
"prose-bcGov" | ||
] | ||
}] | ||
}, | ||
"plugins": ["tailwindcss"], | ||
"ignorePatterns": ["**/*.md"] | ||
} |
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,21 @@ | ||
node_modules | ||
*.log | ||
.nuxt | ||
nuxt.d.ts | ||
.output | ||
.data | ||
.env | ||
package-lock.json | ||
framework | ||
dist | ||
.DS_Store | ||
|
||
# Yarn | ||
.yarn/cache | ||
.yarn/*state* | ||
|
||
# Local History | ||
.history | ||
|
||
# VSCode | ||
.vscode/ |
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,3 @@ | ||
.playground | ||
scripts | ||
.nuxt |
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,2 @@ | ||
shamefully-hoist=true | ||
strict-peer-dependencies=false |
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 @@ | ||
typescript.includeWorkspace = true |
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,5 @@ | ||
export default defineAppConfig({ | ||
myLayer: { | ||
name: 'My amazing Nuxt layer (overwritten)' | ||
} | ||
}) |
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,8 @@ | ||
export default defineNuxtConfig({ | ||
extends: ['..'], | ||
modules: ["@nuxt/image"], | ||
compatibilityDate: "2024-07-16", | ||
future: { | ||
compatibilityVersion: 4 | ||
}, | ||
}) |
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,5 @@ | ||
{ | ||
"devDependencies": { | ||
"@nuxt/image": "^1.7.0" | ||
} | ||
} |
Oops, something went wrong.