chore(module): change node type to module

This commit is contained in:
xfy
2024-10-12 14:58:42 +08:00
parent 5c55bb1c75
commit 9c21c31b35
3 changed files with 9 additions and 6 deletions

View File

@ -2,6 +2,7 @@
"name": "blog-v4",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build && node scripts/build-search.mjs",

View File

@ -1,6 +0,0 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};

8
postcss.config.mjs Normal file
View File

@ -0,0 +1,8 @@
/** @type {import('postcss-load-config').Config} */
const config = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};
export default config;