Skip to content

Commit

Permalink
refactor: remove STENCIL_BASE_URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbert committed Nov 3, 2023
1 parent cbb3b41 commit 4cbcc6e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ jobs:
- name: "Continuous Integration: build"
env:
BASE_URL: "/utrecht/"
STENCIL_BASE_URL: "/utrecht/stencil/"
run: |
pnpm run --if-present build
Expand Down
4 changes: 2 additions & 2 deletions packages/web-component-library-stencil/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0" />
<title>Stencil Component Starter</title>

<script type="module" src="/build/utrecht.esm.js"></script>
<script nomodule src="/build/utrecht.js"></script>
<script type="module" src="./build/utrecht.esm.js"></script>
<script nomodule src="./build/utrecht.js"></script>
<link rel="stylesheet" type="text/css" href="https://unpkg.com/@utrecht/design-tokens/dist/index.css" />
<style>
.menu {
Expand Down
1 change: 0 additions & 1 deletion packages/web-component-library-stencil/stencil.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ export const config: Config = {
{
type: 'www',
serviceWorker: null, // disable service workers
baseUrl: process.env.STENCIL_BASE_URL,
},
reactOutputTarget({
componentCorePackage: '@utrecht/web-component-library-stencil',
Expand Down

0 comments on commit 4cbcc6e

Please sign in to comment.