diff --git a/Dockerfile b/Dockerfile index dc071ea..de9cb55 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,8 +14,7 @@ COPY ./app/tsconfig.json ./ # Install Node.js dependencies RUN npm install -# Copy craco.config.js, public, and src directories -COPY ./app/craco.config.js ./craco.config.js +# Copy public, and src directories COPY ./app/public ./public COPY ./app/src ./src diff --git a/app/craco.config.js b/app/craco.config.js deleted file mode 100644 index 2e6c13c..0000000 --- a/app/craco.config.js +++ /dev/null @@ -1,43 +0,0 @@ -const cracoWasm = require("craco-wasm"); -const webpack = require("webpack"); -const path = require("path"); - -module.exports = { - plugins: [ - cracoWasm(), - ], - eslint: { - enable: false - }, - babel: { - plugins: [ - [ - 'formatjs', - { - removeDefaultMessage: false, - idInterpolationPattern: '[sha512:contenthash:base64:6]', - ast: true - } - ] - ] - }, - webpack: { - configure: { - resolve: { - fallback: { - buffer: require.resolve("buffer"), - }, - alias: { - '@ffmpeg/ffmpeg': path.resolve(__dirname, 'src/stub.js') - }, - }, - plugins: [ - new webpack.ProvidePlugin({ - Buffer: ["buffer", "Buffer"], - }), - ], - ignoreWarnings: [/Failed to parse source map/], - cache: false, - }, - }, -} \ No newline at end of file diff --git a/app/public/index.html b/app/index.html similarity index 92% rename from app/public/index.html rename to app/index.html index bcbbbba..ec20b03 100644 --- a/app/public/index.html +++ b/app/index.html @@ -3,23 +3,23 @@
- + - + - + @@ -86,6 +86,8 @@ To begin the development, run `npm start` or `yarn start`. To create a production bundle, use `npm run build` or `yarn build`. --> + +