Skip to content

Commit

Permalink
Merge branch 'table'
Browse files Browse the repository at this point in the history
  • Loading branch information
JJIIIINN committed Dec 25, 2023
2 parents 794d1e7 + cc66544 commit f168553
Show file tree
Hide file tree
Showing 41 changed files with 31,431 additions and 873 deletions.
22 changes: 22 additions & 0 deletions config-overrides.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
const webpack = require("webpack");

module.exports = function override(config) {
// 'path'와 'os' polyfill 적용
config.resolve.fallback = {
...config.resolve.fallback,
fs: require.resolve("browserify-fs"),
path: require.resolve("path-browserify"),
os: require.resolve("os-browserify/browser"),
crypto: require.resolve("crypto-browserify"),
stream: require.resolve("stream-browserify"),
};
config.plugins = [
new webpack.ProvidePlugin({
process: "process/browser",
Buffer: ["buffer", "Buffer"],
}),
...config.plugins,
];

return config;
};
Loading

0 comments on commit f168553

Please sign in to comment.