Fix a few typos
This commit is contained in:
parent
515db811c5
commit
26cd2802f4
3 changed files with 2 additions and 3 deletions
|
@ -6,6 +6,6 @@ module.exports = merge(
|
|||
{
|
||||
mode: "development",
|
||||
devtool: "inline-source-map",
|
||||
output: {path: path.resolve(__dirname, "build", "development")}
|
||||
output: {path: path.resolve(__dirname, "..", "build", "development")}
|
||||
}
|
||||
)
|
||||
|
|
|
@ -8,6 +8,6 @@ module.exports = merge(
|
|||
mode: "production",
|
||||
devtool: false,
|
||||
optimization: { minimize: true },
|
||||
output: {path: path.resolve(__dirname, "build", "production")}
|
||||
output: {path: path.resolve(__dirname, "..", "build", "production")}
|
||||
}
|
||||
)
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
import { useWebService } from "~/hooks/useWebService";
|
||||
|
||||
export function App() {
|
||||
const t = chrome.i18n.getMessage;
|
||||
const [response, error] = useWebService();
|
||||
if (response) {
|
||||
return (
|
||||
|
|
Loading…
Reference in a new issue