feat: enhance contact form security and add animated hero
This commit is contained in:
parent
ea18dcdb8e
commit
8497cd819d
19 changed files with 320 additions and 112 deletions
|
|
@ -1,6 +1,11 @@
|
|||
// @ts-check
|
||||
import withNuxt from '.nuxt/eslint.config.mjs'
|
||||
import { fileURLToPath } from "url";
|
||||
import { dirname, resolve } from "path";
|
||||
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
|
||||
const __filename = fileURLToPath(import.meta.url);
|
||||
const __dirname = dirname(__filename);
|
||||
|
||||
export default withNuxt(
|
||||
// Your custom configs here
|
||||
)
|
||||
const { withNuxt } = await import(
|
||||
resolve(__dirname, ".nuxt/eslint.config.mjs")
|
||||
);
|
||||
|
||||
export default withNuxt([eslintPluginPrettierRecommended]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue