mirror of
https://github.com/wassname/talk.git
synced 2026-06-27 18:45:03 +08:00
df57b4eb17
* feat: suspending, banning, now propogation * feat: added email rendering + localization support * fix: fix related to lib * refactor: moved juicer to queue task * refactor: cleanup of job processor * refactor: improved error messaging around failed email * feat: initial forgot passwor impl * fix: fixed rebase errors * feat: send back Content-Language header with requests * feat: added ban email * feat: implemented forgotten password API * fix: linting * feat: support more emails * fix: promise patches * feat: initial confirm email API * feat: added rate limiting * feat: added URL support * feat: added email docs * fix: updated docs * chore: documentation review * fix: fixed build bug * feat: implement forgot password in auth popup * test: add tests + fixes * chore: rename StatelessComponent to FunctionComponent * fix: types and test fixes * chore: upgrade deps * fix: THANK YOU TESTS FOR SAVING MY A** * chore: reorder imports * chore: remove obsolete ! * feat: implement accounts bundle * refactor: review suggestion * fix: rebase upgrade error * fix: rebase bug * feat: reset password link support * test: add tests for account password reset page * fix: remove redirect uri * fix: revert local state changes
102 lines
4.7 KiB
TypeScript
102 lines
4.7 KiB
TypeScript
import errorOverlayMiddleware from "react-dev-utils/errorOverlayMiddleware";
|
||
import evalSourceMapMiddleware from "react-dev-utils/evalSourceMapMiddleware";
|
||
import ignoredFiles from "react-dev-utils/ignoredFiles";
|
||
import noopServiceWorkerMiddleware from "react-dev-utils/noopServiceWorkerMiddleware";
|
||
import { Configuration } from "webpack-dev-server";
|
||
import paths from "./paths";
|
||
|
||
interface WebpackDevServerConfig {
|
||
allowedHost: any;
|
||
serverPort: number;
|
||
publicPath: string;
|
||
}
|
||
|
||
export default function({
|
||
allowedHost,
|
||
serverPort,
|
||
publicPath,
|
||
}: WebpackDevServerConfig): Configuration {
|
||
return {
|
||
stats: {
|
||
// https://github.com/TypeStrong/ts-loader#transpileonly-boolean-defaultfalse
|
||
// Using transpilation only without typechecks gives warnings when we reexport types.
|
||
// We can ignore them here.
|
||
warningsFilter: /export .* was not found in/,
|
||
},
|
||
// Enable gzip compression of generated files.
|
||
compress: true,
|
||
// Silence WebpackDevServer's own logs since they're generally not useful.
|
||
// It will still show compile warnings and errors with this setting.
|
||
clientLogLevel: "none",
|
||
// By default WebpackDevServer serves physical files from current directory
|
||
// in addition to all the virtual build products that it serves from memory.
|
||
// This is confusing because those files won’t automatically be available in
|
||
// production build folder unless we copy them. However, copying the whole
|
||
// project directory is dangerous because we may expose sensitive files.
|
||
// Instead, we establish a convention that only files in `public` directory
|
||
// get served. Our build script will copy `public` into the `build` folder.
|
||
// In `index.html`, you can get URL of `public` folder with %PUBLIC_URL%:
|
||
// <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
|
||
// In JavaScript code, you can access it with `process.env.PUBLIC_URL`.
|
||
// Note that we only recommend to use `public` folder as an escape hatch
|
||
// for files like `favicon.ico`, `manifest.json`, and libraries that are
|
||
// for some reason broken when imported through Webpack. If you just want to
|
||
// use an image, put it in `src` and `import` it from JavaScript instead.
|
||
contentBase: paths.appPublic,
|
||
// By default files from `contentBase` will not trigger a page reload.
|
||
watchContentBase: true,
|
||
// Enable hot reloading server. It will provide /sockjs-node/ endpoint
|
||
// for the WebpackDevServer client so it can learn when the files were
|
||
// updated. The WebpackDevServer client is included as an entry point
|
||
// in the Webpack development configuration. Note that only changes
|
||
// to CSS are currently hot reloaded. JS changes will refresh the browser.
|
||
hot: true,
|
||
// It is important to tell WebpackDevServer to use the same "root" path
|
||
// as we specified in the config. In development, we always serve from /.
|
||
publicPath,
|
||
// WebpackDevServer is noisy by default so we emit custom message instead
|
||
// by listening to the compiler events with `compiler.plugin` calls above.
|
||
quiet: true,
|
||
// Reportedly, this avoids CPU overload on some systems.
|
||
// https://github.com/facebookincubator/create-react-app/issues/293
|
||
// src/node_modules is not ignored to support absolute imports
|
||
// https://github.com/facebookincubator/create-react-app/issues/1065
|
||
watchOptions: {
|
||
ignored: ignoredFiles(paths.appSrc),
|
||
},
|
||
overlay: false,
|
||
historyApiFallback: {
|
||
disableDotRule: true,
|
||
rewrites: [
|
||
{ from: /^\/account/, to: "/account.html" },
|
||
{ from: /^\/admin/, to: "/admin.html" },
|
||
{ from: /^\/embed\/stream/, to: "/stream.html" },
|
||
{ from: /^\/embed\/auth/, to: "/auth.html" },
|
||
{ from: /^\/embed\/auth\/callback/, to: "/auth-callback.html" },
|
||
{ from: /^\/install/, to: "/install.html" },
|
||
],
|
||
},
|
||
public: allowedHost,
|
||
index: "embed.html",
|
||
proxy: {
|
||
// Proxy to the graphql server.
|
||
"/api": {
|
||
target: `http://localhost:${serverPort}`,
|
||
},
|
||
},
|
||
before(app, server) {
|
||
// This lets us fetch source contents from webpack for the error overlay
|
||
app.use(evalSourceMapMiddleware(server));
|
||
|
||
// This lets us open files from the runtime error overlay.
|
||
app.use(errorOverlayMiddleware());
|
||
// This service worker file is effectively a 'no-op' that will reset any
|
||
// previous service worker registered for the same host:port combination.
|
||
// We do this in development to avoid hitting the production cache if
|
||
// it used the same host and port.
|
||
// https://github.com/facebookincubator/create-react-app/issues/2272#issuecomment-302832432
|
||
app.use(noopServiceWorkerMiddleware());
|
||
},
|
||
};
|
||
}
|