initial commit
This commit is contained in:
12
next.config.mjs
Normal file
12
next.config.mjs
Normal file
@@ -0,0 +1,12 @@
|
||||
// next.config.mjs
|
||||
import path from "path";
|
||||
import withFlowbiteReact from "flowbite-react/plugin/nextjs";
|
||||
|
||||
const nextConfig = {
|
||||
webpack: (config) => {
|
||||
config.resolve.alias["@"] = path.resolve(process.cwd());
|
||||
return config;
|
||||
},
|
||||
};
|
||||
|
||||
export default withFlowbiteReact(nextConfig);
|
||||
Reference in New Issue
Block a user