- allows us to easily differentiate the exposed components of the npm package vs the dev-only ones - allows the postcss config to purgecss correctly for production build, we do not include the classes seen in the dev components
19 lines
464 B
HTML
19 lines
464 B
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>@gouvfr-lasuite/integration : exemples</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/dev/dev.tsx"></script>
|
|
<script
|
|
id="lasuite-gaufre-script"
|
|
async
|
|
defer
|
|
src="%VITE_LASUITE_API_URL%/api/v1/gaufre.js"
|
|
></script>
|
|
</body>
|
|
</html>
|