Skip to content

Commit 3096456

Browse files
committed
Removed module in package.json
1 parent 8d873e7 commit 3096456

File tree

6 files changed

+7
-9
lines changed

6 files changed

+7
-9
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ jobs:
6060
- name: Copy next.config.js
6161
run: cp next.config.js dist/next.config.js
6262

63-
- name: Copy postcss.config.cjs
64-
run: cp postcss.config.cjs dist/postcss.config.cjs
63+
- name: Copy postcss.config.js
64+
run: cp postcss.config.js dist/postcss.config.js
6565

66-
- name: Copy tailwind.config.cjs
67-
run: cp tailwind.config.cjs dist/tailwind.config.cjs
66+
- name: Copy tailwind.config.js
67+
run: cp tailwind.config.js dist/tailwind.config.js
6868

6969
- name: Copy output to dist
7070
run: cp -r --parents output dist

next.config.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const nextConfig = { reactStrictMode: true };
2-
3-
export default nextConfig;
1+
module.exports = {
2+
reactStrictMode: true
3+
};

package.deploy.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"type": "module",
32
"scripts": {
43
"build": "next build"
54
},

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
],
1111
"author": "Jonas Buntinx",
1212
"license": "MIT",
13-
"type": "module",
1413
"scripts": {
1514
"build": "yarn build:clean && yarn build:spago && yarn build:next",
1615
"build:clean": "rm -Rf output",
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)