forked from TuanManhCao/digital-garden
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: cleanup dependencies and tools (TuanManhCao#19)
* chore: fix dev command * chore: remove unused libraries * chore: remove unused document * chore: ignore public file contents * chore: replace linter/formatter to rome * style: format codes * ci: fix lint command
- Loading branch information
Showing
27 changed files
with
1,144 additions
and
4,969 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -21,6 +21,8 @@ | |
/build | ||
/posts | ||
!/posts/.gitkeep | ||
/public | ||
!/public/favicon.ico | ||
|
||
# misc | ||
.DS_Store | ||
|
This file was deleted.
Oops, something went wrong.
Empty file.
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 |
---|---|---|
@@ -1,20 +1,20 @@ | ||
module.exports = { | ||
swcMinify: true, | ||
webpack: (config) => { | ||
config.resolve.fallback = { | ||
fs: false, | ||
buffer: false | ||
}; | ||
return config; | ||
}, | ||
output: "standalone", | ||
async redirects() { | ||
return [ | ||
{ | ||
source: "/", | ||
destination: "/README", | ||
permanent: true | ||
} | ||
] | ||
} | ||
swcMinify: true, | ||
webpack: (config) => { | ||
config.resolve.fallback = { | ||
fs: false, | ||
buffer: false, | ||
}; | ||
return config; | ||
}, | ||
output: "standalone", | ||
async redirects() { | ||
return [ | ||
{ | ||
source: "/", | ||
destination: "/README", | ||
permanent: 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
Oops, something went wrong.