diff --git a/hc-intro/index.html b/hc-intro/index.html index 556710f..613d822 100644 --- a/hc-intro/index.html +++ b/hc-intro/index.html @@ -118,15 +118,6 @@

Program Components


This will be using scaffolding tools and we will provide you with a few different app designs to choose from to implement. -

Meet your instructor

- -

Guillem Cordoba has been building Holochain applications for several years, he has been a key contributor to both the Holochain protocol and the ecosystem as a whole.

-

Guillem has trained others on Holochain development for nearly as long. He held the community-led development programs (dev camps) and online as well as in-person Holochain intensive development courses. He is one of the world's most experienced and knowledgeable Holochain developers and an outstanding teacher.

- -

Support staff

- -

Viktor Zaunders has been organizing community events and learning environments for several years. He is a software architect that is also passionate about learning and creating spaces where people feel comfortable. He will be doing the support, administration and communications around the course to make sure that students have a great experience.

-

Course Details

This training will run online over the course of x days in the following schedule:

  • Monday
  • @@ -158,7 +149,21 @@

    Apply

    In order to create an intimate and interactive learning enviromnet where you as students have plenty of space to ask questions we are limiting this course to 10 participants. We will be running more of these courses throughout the year though so even if there is not a space for you now we will get in touch with you again when there is a new possibility to join.

    We look forward to your participation and learning together!

    Apply Now!

    + +

    Meet your instructor

    + +

    Guillem Cordoba has been building Holochain applications for several years, he has been a key contributor to both the Holochain protocol and the ecosystem as a whole.

    +

    Guillem has trained others on Holochain development for nearly as long. He held the community-led development programs (dev camps) and online as well as in-person Holochain intensive development courses. He is one of the world's most experienced and knowledgeable Holochain developers and an outstanding teacher.

    + +

    Support staff

    + +

    Viktor Zaunders has been organizing community events and learning environments for several years. He is a software architect that is also passionate about learning and creating spaces where people feel comfortable. He will be doing the support, administration and communications around the course to make sure that students have a great experience.

    +
    + + +

    Eric Bear is an event and community organizer with more than a decade of experience in creating learning environments. He loves creating spaces for connection and development and takes great care in helping students get set up to learn. Eric will be responsible for opening the course as well as for the closing and evaluation.

    +

    diff --git a/vite.config.ts b/vite.config.ts index 8157509..7308e45 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,5 +1,22 @@ -import { defineConfig } from 'vite'; +/* import { defineConfig } from 'vite'; export default defineConfig({ base: '' }); +*/ + +import { resolve } from 'path' +import { defineConfig } from 'vite'; + +export default defineConfig({ + base: '', + build: { + rollupOptions: { + input: { + main: resolve(__dirname, 'index.html'), + hc_intro: resolve(__dirname, 'hc-intro/index.html'), + }, + }, + }, +}); +