Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const AadLoginRequest = { "scopes": ["openid", "profile", "https://manage
export enum ConfigEndpoints {
backend = "/config.json",
service = "/config-apim.json",
editor = "/editor-config.json"
editor = "/config.json"
}

export enum AadClientLibrary {
Expand Down
6 changes: 0 additions & 6 deletions webpack.develop.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,8 @@ const { getArmToken } = require("./auth/arm-auth");

module.exports = async (env) => {
const armToken = await getArmToken({});
const patterns = designerConfig.plugins[1].patterns;
const rules = designerConfig.module.rules;

patterns.push({
from: `./src/config.design.json`,
to: `./editor-config.json`,
});

for (let i = 0; i < rules.length; i++) {
if (rules[i].test.source === "\\.tsx?$") {
rules[i].use = [
Expand Down
Loading